home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000261_news@newsmaster….columbia.edu _Mon Feb 23 10:57:34 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA10647
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Mon, 23 Feb 1998 10:57:34 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA23326
  7.     for kermit.misc@watsun; Mon, 23 Feb 1998 10:57:34 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: rts/cts problem
  12. Date: 23 Feb 1998 15:57:31 GMT
  13. Organization: Columbia University
  14. Lines: 72
  15. Message-ID: <6cs69b$3fs$1@apakabar.cc.columbia.edu>
  16. References: <6cqav9$bn3@glas.apc.org>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8453
  19.  
  20. In article <6cqav9$bn3@glas.apc.org>,
  21. Dmitry the Zuryanovich <dz@mir.glas.apc.org> wrote:
  22. : Ckermit: 6.0.193 A.03.
  23. : OS: SCO OSE 5.04+RSc
  24. : Comm-Driver: SCO standart, not fas.
  25. : Modem: DSI Connection Internal, locked at 38400, it has no problems under
  26. : OS/2 and OpenDOS.
  27. : Problem: it works great, until I do not transfer large thing from me, no
  28. : matter what way ( except kermit protocol - it is too slow, but it helps,
  29. : as it was designed to )
  30. :
  31. Kermit protocol is slow with its default tuning but you can make it as fast
  32. as you want to.  That is the main difference between Kermit and Zmodem:
  33. Kermit is designed to work the first time, even if it is slow; Zmodem is
  34. designed to be fast the first time, even if it does not work.
  35.  
  36. It is easy to make Kermit go faster, but it is not so easy to make Zmodem 
  37. go slower.
  38.  
  39. In case you don't have the C-Kermit manual, you can also read all about 
  40. this at:
  41.  
  42.   http://www.columbia.edu/kermit/faq.html
  43.   ftp://kermit.columbia.edu/kermit/faq.txt
  44.  
  45. and in:
  46.  
  47.   ftp://kermit.columbia.edu/kermit/perf.html
  48.  
  49. :  Looks like:
  50. :  redir sz some_great_file.jpg
  51. :  sz: sending-sending-sending first 5K with an increadible CPS
  52. :  modem: ( generally - remote modem, tested at lot of systems) hangup.
  53. :
  54. This might be caused by inadequate flow control, but more likely it is caused
  55. by the fact that Zmodem takes very few precautions about the transparency of
  56. the connection.  Many connections will hang up if certain data patterns pass
  57. through them.
  58.  
  59. : The same thing with ppp. redir ppp rts/cts ( ppp from Morning Star
  60. : technologies) established LCP, getting ip and works great, again, until I 
  61. : do not say ftp send smth-big. The same result.
  62. :
  63. :  .kermrc
  64. :  set line /dev/tty1a
  65. :  set speed 38400
  66. :  set flow-control rts/cts
  67. :  set modem flow rts/cts
  68. :  blah-blah-blah, but w/o set modem line
  69. : Then I start kermit, say connect and dial ( by ATD command)
  70. : Looks like kermit doesnt set one of rts/cts flow; too many bytes is 
  71. : written to modem, but modem buffer overflows and it causes this error.
  72. Did you give a "set modem type" command?  What modem type did you use?
  73.  
  74. : Modem is seted up with the greatest command AT&F, and it is enough (includes
  75. : rts/cts and so on)
  76. In that case, you can also use "set modem type generic-high-speed" which does
  77. exactly this (initializes the modem with AT&F).
  78.  
  79. : Another question, advanced: so, I have sz writing to standart output.
  80. : Can it set hardware flow control to standart output( via tcsetattr, or
  81. : ioctl )? Is it sz's business to do it?
  82. :
  83. No.  It is not Zmodem's business to do it.  It is using the file descriptor
  84. from Kermit.  Anyway, if you follow the directions for making Kermit go fast,
  85. you won't need to worry about the interface between Kermit and Zmodem.
  86.  
  87. - Frank